body {
    background-image:radial-gradient(#FA8AFF,#96F1FF);
}

#body_home {
    font-family: "Bahnschrift";
}

footer {
    font-family: 'Bahnschrift';
    margin: 4px 0 0 10px;
}

.heading {
    color: rgb(0, 0, 0);
    font-size: 60px;
    font-weight: bolder;
    margin: 30px 0 0px 50px;
}

.heading a {
    text-decoration: none;
}

.back {
    width: 30px;
    height: 30px;
    margin: 30px 50px 0 50px;
}

.container {
    height: 2700px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-rows: 1fr;
    margin: 20px 100px 20px 100px;
}

.slab {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    box-shadow: 2px 2px 4px grey, -2px -2px 4px whitesmoke;
    background-color: aliceblue;
    padding: 0 0 0 0;
}

.large {
    grid-column: span 2;
    grid-row: span 2;
}

.pic {
    border-radius: 18px;
    width: 90%;
    height: 90%;
}

.pic > img {
    margin: 0 0 0 0;
}

@media (min-width: 900px) and (max-width: 1200px) {
    .container {
        height: 2500px;
    }
}

@media (min-width: 100px) and (max-width: 800px) {
    .container {
        height: 1000px;
    }
}